home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1996 February / EnigmA AMIGA RUN 04 (1996)(G.R. Edizioni)(IT)[!][issue 1996-02][Skylink CD III].iso / earcd / comm2 / zpont311.lha / zpoint-3.11 / Rexx / StartLogKonv.zprx < prev    next >
Text File  |  1995-03-27  |  1KB  |  30 lines

  1. /*       StartLogKonv.zprx (24.03.1995) Rainer Krause       */
  2. /*                Black-Jack@black.shnet.org                */
  3. /*                                                          */
  4. /*            ZPLogKonv ist © by Bert Winkelmann            */
  5. /*                                                          */
  6. /*----------------------------------------------------------*/
  7. /*                                                          */
  8. /* Dieses Script dient zum starten von ZPLogKonv an einem   */
  9. /* bestimmten Tag. Dabei werden die Einträge des ZPoint-    */
  10. /* logfiles an das NComm-logfile angehängt.                 */
  11. /*                                                          */
  12. /* Folgendes am besten in die 'startup.zp' eintragen:       */
  13. /*                                                          */
  14. /* REXX:RX ZPOINT:Rexx/StartLogKonv.zprx                    */
  15. /*                                                          */
  16.  
  17. /*  Konfigurationsteil  */
  18.  
  19. tag = '24'                           /* Tag eintragen (01, 02,... 12,...) */
  20. pfad = 'ZPOINT:Tools/'               /* wo befindet sich ZPLogKonv */
  21. infile = 'ZPOINT:logfile.zp'         /* Pfad und Name des ZPoint-log. */
  22. outfile = 'NCOMM:logs/NComm.log'     /* Pfad und Name des NComm-log. */
  23.  
  24. /* hier nichts mehr verändern */
  25.  
  26. IF Left(Date('E'),2)=tag THEN ADDRESS COMMAND pfad'ZPLogKonv from='infile' to='outfile
  27.  
  28. EXIT
  29.  
  30.